Skip to main content
Version: 1.0.2

Get Fed Participant

The GetFedParticipant API enables to fetch the details of Fed participants

Method: POST

{{URL}}/rtp/rpc/TransactionService/GetFedParticipant

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "FEDNOW"

routingNumber

Mandatory

String

Routing number of the bank or financial institution

Example – "184434514"


curl --location --globoff '{{URL}}/rtp/rpc/TransactionService/GetFedParticipant' \
--header 'Content-Type: application/json' \
--data '{"processor":"FEDNOW","routingNumber":"184434514"}'

Request Body (Applicable only for FedNow)


{
"processor": "FEDNOW",
"routingNumber": "184434514"
}

Response: 200

Response Parameters
ParameterDescription

id

String

Unique ID of the generated profile

Example – "184434514"

name

String

Name of the participant bank whose profile is retrieved

Example – "Bank C"

onlineStatus

Boolean

Online status of the participant bank

Example – true

services

Array

Type of services enabled for the bank

Example – "CTRO","CTSR","RFPR"

updatedDate

String

Date and time of the participant bank profile was last updated

Example – "2024-04-29T08:12:09.625Z"

Response Body (Applicable only for FedNow)


{
"id": "184434514",
"name": "Bank C",
"onlineStatus": true,
"services": [
"CTRO",
"CTSR",
"RFPR"
],
"updatedDate": "2024-04-29T08:12:09.625Z"
}